home *** CD-ROM | disk | FTP | other *** search
/ Chip: Internet / Chip Internet.iso / viewer / sox7dos / st.h < prev    next >
Text File  |  1993-02-11  |  6KB  |  223 lines

  1. /*
  2.  * July 5, 1991
  3.  * Copyright 1991 Lance Norskog And Sundry Contributors
  4.  * This source code is freely redistributable and may be used for
  5.  * any purpose.  This copyright notice must be maintained. 
  6.  * Lance Norskog And Sundry Contributors are not responsible for 
  7.  * the consequences of using this software.
  8.  */
  9. #ifdef VAXC
  10. #define IMPORT  globalref
  11. #define EXPORT  globaldef
  12. /*
  13.  * use the VAX C optimized functions 
  14.  */ 
  15. #define calloc  VAXC$CALLOC_OPT
  16. #define cfree   VAXC$CFREE_OPT
  17. #define free    VAXC$FREE_OPT
  18. #define malloc  VAXC$MALLOC_OPT
  19. #define realloc VAXC$REALLOC_OPT
  20. #else
  21. #define IMPORT  extern
  22. #define EXPORT 
  23. #endif
  24.  
  25.  
  26. /*
  27.  * Sound Tools sources header file.
  28.  */
  29.  
  30. #include <stdio.h>
  31.  
  32. #ifdef AMIGA
  33. #include "amiga.h"
  34. #endif /* AMIGA */
  35.  
  36. /*
  37.  * Handler structure for each format.
  38.  */
  39.  
  40. typedef struct format {
  41.     char    **names;    /* file type names */
  42.     int    (*startread)();            
  43.     int    (*read)();            
  44.     int    (*stopread)();        
  45.     int    (*startwrite)();            
  46.     int    (*write)();
  47.     int    (*stopwrite)();        
  48. } format_t;
  49.  
  50. IMPORT format_t formats[];
  51.  
  52. /* Signal parameters */
  53.  
  54. struct  signalinfo {
  55.     long        rate;        /* sampling rate */
  56.     int        size;        /* word length of data */
  57.     int        style;        /* format of sample numbers */
  58.     int        channels;    /* number of sound channels */
  59. };
  60.  
  61. /* Pipe parameters */
  62.  
  63. struct    pipeinfo {
  64.     FILE    *pout;            /* Output file */
  65.     FILE    *pin;            /* Input file */
  66. };
  67.  
  68. /*
  69.  *  Format information for input and output files.
  70.  */
  71.  
  72. #define    PRIVSIZE    50
  73.  
  74. struct soundstream {
  75.     struct    signalinfo info;    /* signal specifications */
  76.     char    swap;            /* do byte- or word-swap */
  77.     char    seekable;        /* can seek on this file */
  78.     char    *filename;        /* file name */
  79.     char    *filetype;        /* type of file */
  80.     char    *comment;        /* comment string */
  81.     FILE    *fp;            /* File stream pointer */
  82.     format_t *h;            /* format struct for this file */
  83.     char    priv[PRIVSIZE];        /* format's private data area */
  84. };
  85.  
  86. IMPORT struct soundstream informat, outformat;
  87. typedef struct soundstream *ft_t;
  88.  
  89. /* Size field */
  90. #define    BYTE    1
  91. #define    WORD    2
  92. #define    LONG    4
  93. #define    FLOAT    5
  94. #define DOUBLE    6
  95. #define IEEE    7        /* IEEE 80-bit floats.  Is it necessary? */
  96.  
  97. /* Style field */
  98. #define UNSIGNED    1    /* unsigned linear: Sound Blaster */
  99. #define SIGN2        2    /* signed linear 2's comp: Mac */
  100. #define    ULAW        3    /* U-law signed logs: US telephony, SPARC */
  101. #define ALAW        4    /* A-law signed logs: non-US telephony */
  102.  
  103. IMPORT char *sizes[], *styles[];
  104.  
  105. /*
  106.  * Handler structure for each effect.
  107.  */
  108.  
  109. typedef struct {
  110.     char    *name;            /* effect name */
  111.     int    flags;            /* this and that */
  112.     int    (*getopts)();        /* process arguments */
  113.     int    (*start)();        /* start off effect */
  114.     int    (*flow)();        /* do a buffer */
  115.     int    (*drain)();        /* drain out at end */
  116.     int    (*stop)();        /* finish up effect */
  117. } effect_t;
  118.  
  119. IMPORT effect_t effects[];
  120.  
  121. #define    EFF_CHAN    1        /* Effect can mix channels up/down */
  122. #define EFF_RATE    2        /* Effect can alter data rate */
  123. #define EFF_MCHAN    4        /* Effect can handle multi-channel */
  124.  
  125. struct effect {
  126.     char        *name;        /* effect name */
  127.     struct signalinfo ininfo;    /* input signal specifications */
  128.     struct signalinfo outinfo;    /* output signal specifications */
  129.     effect_t     *h;        /* effects driver */
  130.     char        priv[PRIVSIZE];    /* private area for effect */
  131. };
  132.  
  133. typedef struct effect *eff_t;
  134.  
  135. #ifdef    __STDC__
  136. #define    P1(x) x
  137. #define    P2(x,y) x, y
  138. #define    P3(x,y,z) x, y, z
  139. #define    P4(x,y,z,w) x, y, z, w
  140. #else
  141. #define P1(x)
  142. #define P2(x,y)
  143. #define P3(x,y,z)
  144. #define P4(x,y,z,w)
  145. #endif
  146.  
  147. /* Utilities to read and write shorts and longs little-endian and big-endian */
  148. unsigned short rlshort(P1(ft_t ft));            /* short little-end */
  149. unsigned short rbshort(P1(ft_t ft));            /* short big-end    */
  150. unsigned short wlshort(P2(ft_t ft, unsigned short us));    /* short little-end */
  151. unsigned short wbshort(P2(ft_t ft, unsigned short us));    /* short big-end    */
  152. unsigned long  rllong(P1(ft_t ft));            /* long little-end  */
  153. unsigned long  rblong(P1(ft_t ft));            /* long big-end     */
  154. unsigned long  wllong(P2(ft_t ft, unsigned long ul));    /* long little-end  */
  155. unsigned long  wblong(P2(ft_t ft, unsigned long ul));    /* long big-end     */
  156. /* Read and write words and longs in "machine format".  Swap if indicated.  */
  157. unsigned short rshort(P1(ft_t ft));            
  158. unsigned short wshort(P2(ft_t ft, unsigned short us));
  159. unsigned long  rlong(P1(ft_t ft));        
  160. unsigned long  wlong(P2(ft_t ft, unsigned long ul));
  161. /* Utilities to byte-swap values */
  162. unsigned short swapw(P1(unsigned short us));        /* Swap short */
  163. unsigned long  swapl(P1(unsigned long ul));        /* Swap long */
  164.  
  165. IMPORT void report(P2(char *, ...)), fail(P2(char *, ...));
  166.  
  167. #if    defined(SYSV) || defined(DOS) 
  168. #define    bcopy(from, to, len)    memcpy(to, from, len)
  169. #define    index        strchr
  170. #define    rindex        strrchr
  171. #endif
  172.  
  173. typedef    unsigned int u_i;
  174. typedef    unsigned long u_l;
  175. typedef    unsigned short u_s;
  176.  
  177. #define    MAXRATE    50L * 1024            /* maximum sample rate */
  178.  
  179. #ifdef    unix
  180. /* Some wacky processors don't have arithmetic down shift, so do divs */
  181. #define LEFT(datum, bits)    (datum << bits)
  182. /* Most compilers will turn this into a shift if they can, don't worry */
  183. /* #define RIGHT(datum, bits)    (datum / (1L << bits)) /* use maybe? */
  184. #define RIGHT(datum, bits)    (datum >> bits)
  185. #else
  186. /* x86 & 68k PC's have arith shift ops and dumb compilers */
  187. #define LEFT(datum, bits)    (datum << bits)
  188. #define RIGHT(datum, bits)    (datum >> bits)
  189. #endif
  190.  
  191. #ifndef    M_PI
  192. #define M_PI    3.14159265358979323846
  193. #endif
  194.  
  195. #if    defined(unix) || defined(AMIGA)
  196. #define READBINARY    "r"
  197. #define WRITEBINARY    "w"
  198. #endif
  199. #ifdef    VMS
  200. #define READBINARY      "r", "mbf=16", "ctx=stm" 
  201. #define WRITEBINARY     "w", "ctx=stm"
  202. #endif
  203. #ifdef    DOS
  204. #define READBINARY    "rb"
  205. #define WRITEBINARY    "wb"
  206. #endif
  207.  
  208. /* Error code reporting */
  209. #ifdef    QNX
  210. #include <errno.h>
  211. #endif
  212.  
  213. #ifdef    unix
  214. #include <errno.h>
  215. extern errno;
  216. extern char *sys_errlist[];
  217. #define strerror(errno)    sys_errlist[errno]
  218. #endif
  219.  
  220. #ifdef    DOS
  221. /* ??? */
  222. #endif
  223.